home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload Trio 2 / Shareware Overload Trio Volume 2 (Chestnut CD-ROM).ISO / dir27 / grphca22.zip / EXAMPLES.ZIP / SQR.PLT < prev    next >
Text File  |  1993-02-03  |  387b  |  32 lines

  1. [ testing square root axis
  2.  
  3. paper size 11 by 8.5
  4. pen color lblue
  5.  
  6. map x 100 1000 y 0 100
  7. x sqr
  8. format x 0 y 0
  9. divi x 9 2
  10. grid
  11. draw x y
  12. xlabel 'This is a square root axis'
  13. ylabel 'This is a linear axis'
  14. frame
  15. title 'Example of Square-Root Axis'
  16.  
  17. data
  18. 100 10
  19. 200 20
  20. 300 30
  21. 400 40
  22. 500 50
  23. 600 60
  24. 700 70
  25. 800 80
  26. 900 90
  27. 1000 100
  28. end
  29.  
  30. pen color lred
  31. plot x y add
  32.